home *** CD-ROM | disk | FTP | other *** search
- /*
- File: JapaneseAnalysis.h
-
- Contains: class JapaneseAnalysis
-
- Version: 1.0
-
- Copyright: © 1994 - 1997 by Apple Computer, Inc., all rights reserved.
-
- File Ownership:
-
- DRI: Farzin Maghoul
-
- Other Contact: Kevin Tiene
-
- Technology: xxx put the technology group name here xxx
-
- Writers:
-
- (dgc) David Cásseres
-
- Change History (most recent first):
-
- <3> 1/22/97 dgc Bug fix
- <2> 1/16/97 dgc Correct type id.
- */
-
- #pragma once
- #ifndef JapaneseAnalysis_h
- #define JapaneseAnalysis_h
-
- #pragma import on
-
- #include "IAAnalysis.h"
-
- #pragma IA_BEGIN_EXPORTS
-
- const uint32 JapaneseAnalysisType = 'Jap1';
-
- class JapaneseAnalysis : public IAAnalysis {
- public:
- JapaneseAnalysis() : IAAnalysis(JapaneseAnalysisType) {}
-
- IATokenStream* MakeTokenStream(IADocText* text);
- IATerm* GetProtoTerm();
- };
-
- #pragma IA_END_EXPORTS
-
- #pragma import reset
-
- #endif
-